home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1995 January / Simtel - 10000 MSDOS Shareware Programs (Walnut Creek)(January 1995)(Disc 1).ISO / disc1 / filedocs / simcvt.c < prev    next >
C/C++ Source or Header  |  1994-09-17  |  3KB  |  75 lines

  1. /******************************************************************************
  2.  
  3. Written by reynolds@sun.com                                     01/21/90
  4. Minor corrections to instructions and portability
  5.         davidsen@crdos1.crd.ge.com            02/23/90
  6. Updated for SimTel Software Repository
  7.         w8sdz@SimTel.Coast.NET                11/01/93
  8. Updated for the Coast to Coast Software Repository
  9.         w8sdz@SimTel.Coast.NET                09/17/94
  10.  
  11. This SIMCVT.C filter should convert SimTel's "SIMIBM.IDX" file into a
  12. readable "SIMIBM.LST" that is compatible with the other convert programs,
  13. except for the run-date at the top of the output file.
  14.  
  15. This program, written in "C" should compile on both 4.3BSD Unix machines,
  16. as well as IBM/pc compatible machines.  It works on both VAXen, and Suns.
  17.  
  18. To Compile on Unix, type "cc -o simcvt SIMCVT.C" creating simcvt.
  19. To Compile on IBM/pcs, see your C manual that came with the compiler.
  20.  
  21. To run, type "simcvt < simibm.idx > simibm.lst
  22.  
  23. ******************************************************************************/
  24.  
  25. #include <stdio.h>
  26.  
  27. main()
  28.  
  29. {
  30. char  fs[10],dir[60],name[15],descr[60]; /* input variables */
  31. char  inputline[257];                    /* for initial read */
  32. int   rev,bits;                          /* input variables */
  33. long  length,date;                       /* input variables */
  34. char  lfs[10],ldir[60];                  /* stores last filesystem/directory */
  35. char  type;                              /* output variable for 'A' or 'B' */
  36. char  c;                                 /* picks off EOF,",linefeed */
  37.  
  38. printf("These files are available by anonymous FTP from the SimTel primary\n");
  39. printf("mirror site OAK.Oakland.Edu (141.210.10.117) and its mirrors.  See\n");
  40. printf("/SimTel/msdos/filedocs/download.inf for a list of all mirror sites.\n\n");
  41.  
  42. printf("NOTE: Type B is Binary; Type A is ASCII\n");
  43.  
  44. inputline[256] = 0;
  45.  
  46. while (fgets(inputline, 256, stdin) != NULL)  {
  47.  
  48.    sscanf(inputline, 
  49.            "\"%[^\"]\",\"%[^\"]\",\"%[^\"]\",%d,%ld,%d,%ld,\"%[^\"]\"",
  50.             fs, dir, name, &rev, &length, &bits, &date, descr);
  51.  
  52.    type = 'B';                           /* Binary 8-bit */
  53.    if (bits == 7) type = 'A';            /* ASCII  7-bit */
  54.  
  55.    if (strcmp(ldir,dir) || strcmp(lfs,fs)) {  /* New Directory */
  56.       printf("\nDirectory %s%s\n",fs,dir);
  57.       printf(" Filename   Type Length   Date    Description\n");
  58.       printf("==============================================\n");
  59.       strcpy(ldir, dir);          /* Remember last directory with ldir  */
  60.       strcpy(lfs,fs);             /* Remember last file system with lfs */
  61.    }                              /* End of the New Directory routine   */
  62.  
  63.  
  64.    printf("%-12.12s  %c %7ld  %6ld  %s\n",name,type,length,date,descr);
  65.    }
  66. } /* end of main() program by Ray */
  67.  
  68. /*****************************************************************************
  69.  
  70.    This filter takes data in the following format:
  71. "pub/","msdos/ada/","ada-lrm2.zip",1,201439,8,890411,"The Ada Language Reference Manual reader (2/4)"
  72.    And converts it to the following format:
  73. ada-lrm2.zip  B  201439  890411  The Ada Language Reference Manual reader (2/4)
  74. *****************************************************************************/
  75.